14b41dfb946be72967cdb6acaa376a92c4eb10c9,src/main/java/szewek/mcflux/util/recipe/BuiltShapedRecipe.java,BuiltShapedRecipe,matches,#InventoryCrafting#World#,64
Before Change
public boolean matches(@Nonnull InventoryCrafting inv, @Nonnull World w) {
for (int x = 0; x < 4 - width; x++)
for (int y = 0; y < 4 - height; y++) {
if (matchOffset(inv, x, y, false, false) == size) {
return true;
}
if (mirror == 0) continue;
if ((mirror & 2) != 0 && matchOffset(inv, x, y, true, false) == size)
return true;
if ((mirror & 1) != 0 && matchOffset(inv, x, y, false, true) == size)
return true;
After Change
return true;
}
if (mirror == 0) continue;
if ((mirror & 2) != 0 && matchOffset(inv, x, y, true, false))
return true;
if ((mirror & 1) != 0 && matchOffset(inv, x, y, false, true))
return true;